home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / DevDisk 65 (1989)(DevWare PD).zip / DevDisk 65 (1989)(DevWare PD).adf / prosuite / global.c < prev    next >
C/C++ Source or Header  |  1990-07-11  |  2KB  |  52 lines

  1.  
  2. /* *** global.c *************************************************************
  3.  *
  4.  * XText  --  Global Variable Declarations
  5.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  6.  *
  7.  * Copyright (C) 1986, 1987, Robert J. Mical
  8.  * All Rights Reserved.
  9.  *
  10.  * Created for Amiga developers.
  11.  * Any or all of this code can be used in any program as long as this
  12.  * entire notice is retained, ok?  Thanks.
  13.  *
  14.  * The Amiga Programmer's Suite Book 1 is copyrighted but freely distributable.
  15.  * All copyright notices and all file headers must be retained intact.
  16.  * The Amiga Programmer's Suite Book 1 may be compiled and assembled, and the 
  17.  * resultant object code may be included in any software product.  However, no 
  18.  * portion of the source listings or documentation of the Amiga Programmer's 
  19.  * Suite Book 1 may be distributed or sold for profit or in a for-profit 
  20.  * product without the written authorization of the author, RJ Mical.
  21.  * 
  22.  * HISTORY       NAME            DESCRIPTION
  23.  * -----------   --------------  --------------------------------------------
  24.  * 27 Oct 86     RJ              Add XText buffer stuff, prepare for release
  25.  * March 86      RJ              Incorporated this code in Sidecar
  26.  * 26 Jan 86     RJ Mical        Created this file (on my birthday!)
  27.  *
  28.  * *********************************************************************** */
  29.  
  30.  
  31. #define EGLOBAL_CANCEL        /* This prevents eglobal.c from being included */
  32. #include "xtext.h"
  33.  
  34.  
  35.  
  36. /* === System Global Variables ========================================== */
  37. struct IntuitionBase *IntuitionBase = NULL;
  38. struct GfxBase *GfxBase = NULL;
  39. struct DiskfontBase *DiskfontBase = NULL;
  40.  
  41. struct TextAttr SafeFont =
  42.         {
  43.         (UBYTE *)"topaz.font",
  44.         TOPAZ_EIGHTY,
  45.         0,
  46.         FS_NORMAL
  47.         };
  48.  
  49.  
  50.  
  51.  
  52.